home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / pgm_tool / lu62 / include / session.h < prev    next >
C/C++ Source or Header  |  1995-07-03  |  490b  |  22 lines

  1. struct gets {
  2. /*
  3.  * This is the GET_SESSION record. It's sent by PS to
  4.  * RM to request the allocation of a session for the
  5.  * conversation identified by RCB_ID.
  6.  */
  7. struct tcb *p_tcb;
  8. struct rcb *p_rcb;
  9. char bid_id[8];
  10. };
  11.  
  12. struct sessa {
  13. /*
  14.  * This is the SESSION_ALLOCATED record. It's sent by RM
  15.  * to PS in reply on the GET_SESSION record. The return code
  16.  * indicates the success or failure of the session
  17.  * allocation.
  18.  */
  19. unsigned int rc;
  20. struct scb *p_scb;
  21. };
  22.